Fetch Transfer By Reference
Get details of a particular transfer by its reference id.
GET https://api.spotflow.co/api/v1/transfers/reference/:reference
Headers
| authorization  | 
 | 
|---|
Path Parameters
reference
This is the reference id of the transfer that you made on your account using what's in the 'reference' and not 'spotflowReference'.
Sample Response for NGN Transfer:
200 OK
{
    "reference": "ref-005",
    "spotflowReference": "SPF-TRSF-641c47676e4c4036a6826acf9fc9e950",
    "amount": 150,
    "currency": "NGN",
    "destination": {
        "accountNumber": "8083233890",
        "accountName": "Alice Hemsworth",
        "bankCode": "SPB-17646",
        "bankName": "Paycom (Opay)"
    },
    "narration": "transfertest",
    "status": "SUCCESSFUL"
}
Sample Response for GHS Transfer:
200 OK
{
    "reference": "ref-005",
    "spotflowReference": "SPF-TRSF-0f700d1f77bf4d69b0f8b7005b2aadb1",
    "amount": 1.00,
    "currency": "GHS",
    "destination": {
        "accountNumber": "7003000100386",
        "accountName": "Joel Finney",
        "bankCode": "SPB-80181",
        "bankName": "Affinity"
    },
    "narration": "Transfer", 
    "status": "SUCCESSFUL"
}